home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 February / PCWorld_2005-02_cd.bin / akce / MediaMonkey_2_3_826.exe / {app} / Scripts / MediaMonkey init.vbs < prev    next >
Text File  |  2003-07-21  |  1KB  |  51 lines

  1. ' MessageBox type constants
  2. const mtWarning      = 0 
  3. const mtError        = 1
  4. const mtInformation  = 2
  5. const mtConfirmation = 3
  6. const mtCustom       = 4
  7.  
  8.  
  9. ' MessageBox buttons constants
  10. const mbYes         =  0
  11. const mbYesToAll    =  1
  12. const mbNo          =  2
  13. const mbNoToAll     =  3
  14. const mbOK          =  4
  15. const mbOkToAll     =  5
  16. const mbCancel      =  6
  17. const mbAbort       =  7
  18. const mbRetry       =  8
  19. const mbIgnore      =  9
  20. const mbIgnoreToAll = 10
  21. const mbAll         = 11
  22. const mbHelp        = 12
  23.  
  24.  
  25. ' MessageBox results
  26. const mrNone        =   0
  27. const mrOk          =   1
  28. const mrCancel      =   2
  29. const mrAbort       =   3
  30. const mrRetry       =   4
  31. const mrIgnore      =   5
  32. const mrYes         =   6
  33. const mrNo          =   7
  34. const mrAll         =   8
  35. const mrNoToAll     =   9
  36. const mrYesToAll    =  10
  37. const mrOkToAll     = 110 
  38. const mrIgnoreToAll = 111
  39.  
  40.  
  41. ' Common Dialog (Open/Save) constants
  42. const cdlOFNOverwritePrompt    = &H0002
  43. const cdlOFNHideReadOnly       = &H0004 
  44. const cdlOFNAllowMultiselect   = &H0200 
  45. const cdlOFNExtensionDifferent = &H0400 
  46. const cdlOFNPathMustExist      = &H0800 
  47. const cdlOFNFileMustExist      = &H1000 
  48. const cdlOFNCreatePrompt       = &H2000 
  49. const cdlOFNNoReadOnlyReturn   = &H8000 
  50.  
  51.